home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-2000 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Point
- @Property: x - the horizontal component of Point
- @Syntax: point.x
- @Summary: x - the horizontal component of Point
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("point.x", selection);
- editor.setActive("Insert point.x");
- }
- }
-
- !!/Script
-